home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 70 / Cine Live 70.iso / pc / Data / Interface / e11s.k < prev    next >
Encoding:
Text File  |  2003-06-02  |  1.8 KB  |  76 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000282,$000000E1,$000001DA,$0000029A,$00000000,$FFFFFFF8,$00000000,$00000000};
  6.         LayoutWindow is {$000000A1,$0000007B,$000002A0,$00000245,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     Kind is DrawOpaque; 
  14.     Elements is [
  15.         oslide2
  16.     ];
  17.     Events is [
  18.         cOnscreenEvent
  19.         with Flags is $00000004; 
  20.             Commands is [
  21.                 cShowCommand
  22.                 with Flags is $00000004; Target is oslide2; end,
  23.                 cEnableCommand
  24.                 with Flags is $00000004; Target is oslide2; end,
  25.                 cFocusCommand
  26.                 with Target is oslide2; end,
  27.                 cRunCommand
  28.                 with Flags is $00000004; Target is oslide2; Rewind is true; end
  29.             ];
  30.         end
  31.     ];
  32. end;
  33.  
  34. object oslide2 is cImage
  35. with 
  36.     Flags is $00000254; 
  37.     Name is "slide"; 
  38.     Enabled is false; Shown is false; Cursor is oEmptyCursor; 
  39.     
  40.     Width is 800; Height is 600; 
  41.     Duration is 2; Duration is 2; TimeScale is 1; 
  42.     URL is "../../Photos/Sinbad/T%20Johnson.jpg"; 
  43.     
  44.     
  45.     Events is [
  46.         cKeyboardEvent
  47.         with Flags is $00000004; Test is IsSpace; 
  48.             Commands is [
  49.                 cFocusCommand
  50.                 with Flags is $00000004; Target is oTargetSelf; end,
  51.                 cRunCommand
  52.                 with Flags is $00000004; Target is oTargetSelf; Mode is Toggle; end
  53.             ];
  54.         end,
  55.         cMouseUpEvent
  56.         with Flags is $00000004; Flag is true; 
  57.             Commands is [
  58.                 cRunCommand
  59.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; Rewind is true; end,
  60.                 cEnableCommand
  61.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end,
  62.                 cShowCommand
  63.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end,
  64.                 cBackCommand
  65.                 with Flags is $00000004; end
  66.             ];
  67.         end,
  68.         cFinishedEvent
  69.         with Flags is $00000004; 
  70.             Commands is [
  71.                 cBackCommand
  72.                 with Flags is $00000005; end
  73.             ];
  74.         end
  75.     ];
  76. end;